home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / net / swap.c < prev    next >
C/C++ Source or Header  |  1989-12-11  |  3KB  |  176 lines

  1. /* 
  2.  * swap.c --
  3.  *
  4.  *    Library routine for manipulating byte order.
  5.  *
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  *
  17.  */
  18.  
  19. #ifndef lint
  20. static char rcsid[] = "$Header: /sprite/src/lib/c/net/RCS/swap.c,v 1.2 89/12/11 13:42:57 rab Exp $ SPRITE (Berkeley)";
  21. #endif
  22.  
  23. #include "machparam.h"
  24.  
  25.  
  26. /* 
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * ntohs --
  30.  *
  31.  *    Convert a short integer in network byte order to an short integer in 
  32.  *    host byte order.
  33.  *
  34.  * Results:
  35.  *    The short integer in host byte order.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. unsigned short 
  44. ntohs(shortInt)
  45.     unsigned short shortInt;     /* A short int in network byte order. */
  46. {
  47.  
  48. #if BYTE_ORDER == LITTLE_ENDIAN
  49.     union swab {
  50.     unsigned short s;
  51.     unsigned char  c[2];
  52.     } in, out;
  53.  
  54.     in.s = shortInt;
  55.     out.c[0] = in.c[1];
  56.     out.c[1] = in.c[0];
  57.     return out.s;
  58. #else
  59.     return shortInt;
  60. #endif
  61.  
  62. }
  63.  
  64. /* 
  65.  *----------------------------------------------------------------------
  66.  *
  67.  * ntohl --
  68.  *
  69.  *    Convert an integer in network byte order to an integer in 
  70.  *    host byte order.
  71.  *
  72.  * Results:
  73.  *    The integer in host byte order.
  74.  *
  75.  * Side effects:
  76.  *    None.
  77.  *
  78.  *----------------------------------------------------------------------
  79.  */
  80.  
  81. unsigned long 
  82. ntohl(longInt)
  83.     unsigned long longInt;    /* 32bit integer in network byte order. */
  84. {
  85. #if BYTE_ORDER == LITTLE_ENDIAN
  86.     union {
  87.     unsigned long l;
  88.     unsigned char  c[4];
  89.     } in, out;
  90.  
  91.     in.l = longInt;
  92.     out.c[0] = in.c[3];
  93.     out.c[1] = in.c[2];
  94.     out.c[2] = in.c[1];
  95.     out.c[3] = in.c[0];
  96.     return out.l;
  97. #else
  98.     return longInt;
  99. #endif
  100. }
  101.  
  102. /* 
  103.  *----------------------------------------------------------------------
  104.  *
  105.  * htons --
  106.  *
  107.  *    Convert a short integer in host byte order to an short integer in 
  108.  *    network byte order.
  109.  *
  110.  * Results:
  111.  *    The short integer in network byte order.
  112.  *
  113.  * Side effects:
  114.  *    None.
  115.  *
  116.  *----------------------------------------------------------------------
  117.  */
  118.  
  119. unsigned short 
  120. htons(shortInt)
  121.     unsigned short shortInt;     /* A short int in Host byte order. */
  122. {
  123. #if BYTE_ORDER == LITTLE_ENDIAN
  124.     union swab {
  125.     unsigned short s;
  126.     unsigned char  c[2];
  127.     } in, out;
  128.  
  129.     in.s = shortInt;
  130.     out.c[0] = in.c[1];
  131.     out.c[1] = in.c[0];
  132.     return out.s;
  133. #else
  134.     return shortInt;
  135. #endif
  136. }
  137.  
  138. /* 
  139.  *----------------------------------------------------------------------
  140.  *
  141.  * htonl --
  142.  *
  143.  *    Convert an integer in host byte order to an integer in 
  144.  *    net byte order.
  145.  *
  146.  * Results:
  147.  *    The integer in net byte order.
  148.  *
  149.  * Side effects:
  150.  *    None.
  151.  *
  152.  *----------------------------------------------------------------------
  153.  */
  154.  
  155. unsigned long 
  156. htonl(longInt)
  157.     unsigned long longInt;    /* 32bit integer in host byte order. */
  158. {
  159. #if BYTE_ORDER == LITTLE_ENDIAN
  160.     union {
  161.     unsigned long l;
  162.     unsigned char  c[4];
  163.     } in, out;
  164.  
  165.     in.l = longInt;
  166.     out.c[0] = in.c[3];
  167.     out.c[1] = in.c[2];
  168.     out.c[2] = in.c[1];
  169.     out.c[3] = in.c[0];
  170.     return out.l;
  171. #else
  172.     return longInt;
  173. #endif
  174. }
  175.  
  176.